home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / D-G / GemsI / Src / Sturm / Makefile < prev    next >
Encoding:
Makefile  |  1992-06-16  |  211 b   |  13 lines  |  [TEXT/MPS ]

  1. #
  2. # Makefile
  3. #
  4. #    command file for make to compile the solver.
  5.  
  6. solve: main.o sturm.o util.o
  7.     cc -o solve main.o sturm.o util.o -lm
  8.  
  9. clean:
  10.     /bin/rm -f main.o sturm.o util.o solve
  11.  
  12. main.o sturm.o util.o: solve.h
  13.